From d8f8f35470499fdc74e688719ba55239c237acb0 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 24 Feb 2010 10:46:49 +0000 Subject: [PATCH] xm: Show usage message of xm commands The following commands don't show an usage message even if we give a wrong option to the commands. - xm block-list - xm network-list - xm network2-list - xm vtpm-list - xm pci-list - xm scsi-list e.g. # xm block-list --xxx vm1 Error: option --xxx not recognized This patch shows the usage message of the commands. e.g. # xm block-list --xxx vm1 Error: option --xxx not recognized Usage: xm block-list [--long] List virtual block devices for a domain. Signed-off-by: Masaki Kanno --- tools/python/xen/xm/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xm/main.py b/tools/python/xen/xm/main.py index 73e868f2cb..0c2f942d79 100644 --- a/tools/python/xen/xm/main.py +++ b/tools/python/xen/xm/main.py @@ -2122,7 +2122,7 @@ def arg_check_for_resource_list(args, name): (options, params) = getopt.gnu_getopt(args, 'l', ['long']) except getopt.GetoptError, opterr: err(opterr) - sys.exit(1) + usage(name) for (k, v) in options: if k in ['-l', '--long']: -- 2.30.2